home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 2000 June / macformat-091.iso / Shareware Plus / Internet / XML Tools 2.0 / generate XML sample / generate XML sample.rsrc / TEXT_2000_Source Text.txt < prev    next >
Encoding:
Text File  |  1999-12-05  |  528 b   |  20 lines

  1. set theXML to ¬¨
  2.     {class:XML element, XML tag:"start", XML contents:{¬¨
  3.         "some text", ¬¨
  4.         {class:XML element, XML tag:"tag", XML attributes:{attribute1:"value1", attribute2:"value2"}}, ¬¨
  5.         "some more text", ¬¨
  6.         {class:XML element, XML tag:"tag", XML attributes:{attribute1:"value3", attribute2:"value4"}}}}
  7.  
  8. generate XML theXML
  9.  
  10. --    --> "<start>
  11. --        some text
  12. --        <tag
  13. --            attribute1=\"value1\"
  14. --            attribute2=\"value2\"/>
  15. --        some more text
  16. --        <tag
  17. --            attribute1=\"value3\"
  18. --            attribute2=\"value4\"/>
  19. --    </start>
  20. --    "